home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.readme < prev    next >
Text File  |  1996-10-11  |  33KB  |  682 lines

  1. Short:    IXemul 44.0 - developer's tool kit
  2. Author:   various
  3. Uploader: fnf@ninemoons.com
  4. Type:     dev/gcc
  5.  
  6. This is ixemul.library release 44.0, a shared library that makes it possible
  7. to compile and run most Unix programs under AmigaOS with almost no changes.
  8. IXemul is part of the ADE (Amiga Developer's Environment), a community
  9. effort to produce a complete development environment that is stable,
  10. available in source, and completely self-hosting.  See the ADE readme file
  11. at ftp://ftp.ninemoons.com/pub/ade/README for more details about ADE.
  12.  
  13. As of version 43.1, IXemul includes Jeff Shepherd's networking code.  If
  14. ixnet.library (included) is installed then ixemul.library will use the
  15. networking functions from the ixnet.library, instead of the default dummy
  16. implementation.  Ixnet.library works with AS225 and with AmiTCP.  It
  17. supports both clients and daemons.  A program that uses networking functions
  18. is completely shielded from the AS225 and AmiTCP differences by
  19. ixnet.library, which will take care of all the details for you. That means
  20. that there is no longer any need to provide two different binaries, one for
  21. AS225 and one for AmiTCP.  Furthermore, it is relatively easy to add support
  22. for other network packages.
  23.  
  24. The following are the changes made since the 43.1 release:
  25.  
  26.     Kriton Kyrimis updated ixprefs.
  27.     
  28.     David Zaroski updated ixtrace.
  29.     
  30.     Fixed link count for directories. Thanks to Norbert Pueschel.
  31.     
  32.     umask implemented for for open() and mkdir(). Thanks to Norbert
  33.     Pueschel.
  34.     
  35.     Added muFIBB_SET_GID, which will be implemented in the next
  36.     version of MultiUser. The old way of handling setgid was
  37.     confusing and even potentially dangerous.  Thanks to Norbert
  38.     Pueschel.
  39.     
  40.     Added the translation unix sticky bit -> AmigaDOS h bit. This one
  41.     is more for aestaethical reasons, as the h bit is no longer
  42.     supported in 3.x.  Thanks to Norbert Pueschel.
  43.     
  44.     Added a field 'void *u_user;' near the beginning of the user
  45.     struct which everybody is free to (ab)use. It can be handy to
  46.     store task private data in the user struct, at least, I had to
  47.     use it recently.
  48.     
  49.     Added an ix_amiga.h header, which will contain all amiga specific
  50.     functions and macros in ixemul.library and libc.a, together with
  51.     a description.
  52.     
  53.     Profiling has been enhanced. Ixprefs adds a new profiling
  54.     preference: either take samples only while your program is
  55.     running and the PC is within your program, or take samples while
  56.     your program is running and if the PC is outside your program
  57.     code (e.g. in ixemul or in intuition.library), use the last
  58.     function your program entered before calling ixemul or whatever,
  59.     or always take samples, even if other programs are running.
  60.     Again, the last recorded function gets the hit in those cases.
  61.     
  62.     An array of 100 longs to store the A4 register of shared
  63.     libraries has been added to the user struct. This array can be
  64.     easily increased in future releases, should the need arise. The
  65.     first 20 slots are for your own free use, the other slots should
  66.     be registered. See the file REGISTRY in the ixemul source
  67.     distribution for more details.
  68.     
  69.     Fixed yet another path bug. Running a shell script that's placed
  70.     somewhere in your PATH from 'make' failed, unless the filename of
  71.     the script was absolute.
  72.     
  73.     Added vfork_setup_child to libc.a. This is a wrapper intended to
  74.     make life just a little bit easier for those who need to use the
  75.     vfork2()/vfork_resume() trick. It replaces the old
  76.     'ix_resident()/ix_get_vars2()' pair.
  77.     
  78.     Fixed more problems with the routines that start a shell
  79.     script. This time problems with symbolic links have been fixed.
  80.     
  81.     Fixed problems when parsing a pathname of a shell script,
  82.     preventing the execution of that script.
  83.     
  84.     Replaced the stdio-sources by the NetBSD 44.0 versions, which
  85.     incidentally fixed the broken fgetpos function. This change also
  86.     adds printf() and scanf() support for the 'long long' datatype.
  87.     
  88.     Added support for the O_CASE open() flag: this will open an
  89.     existing file only if the filenames match using a case-sensitive
  90.     comparison.
  91.     
  92.     fstat() didn't compensate the file time for the current timezone
  93.     offset.
  94.     
  95.     Ixemul now supports the 68010 CPU. Thanks to Pascal Eeftinck for
  96.     pointing out that the 68010 uses a 68020-like stackframe.
  97.     
  98.     Build the version.[ch] files in the build directory instead of in
  99.     the source directory.
  100.     
  101.     Fixed fchdir().
  102.     
  103.     Changed the machine name as returned by uname() to "m68k". Thanks
  104.     to Lars Hecking for this.
  105.     
  106.     O_ASYNC I/O is now partially supported: select() will test for
  107.     this situation.
  108.     
  109.     /dev/tty is now translated to console:.
  110.     
  111.     Implemented pseudo-terminals support using the FIFO device.
  112.     
  113.     Many, mostly small, changes to become more NetBSD
  114.     compatible. Where possible, I've replaced the old sources with
  115.     the NetBSD 1.1 sources.
  116.     
  117.     The select() function has been improved: it is now much faster
  118.     and works much better.
  119.     
  120.     Using F_SETFL with fcntl() failed if the file wasn't a regular
  121.     file. It now also works for pipes and sockets.
  122.     
  123.     Requesters that are from ixemul.library or ixnet.library now have
  124.     the name of the library as their title, so that you can see that
  125.     they are from the library, and not from the application. Thanks
  126.     to Udo Schnurpfeil for suggesting this.
  127.     
  128.     The tty database functions unfortunately slipped through and
  129.     weren't included with 43.1. They are back in 44.0.
  130.     
  131.     Implemented mmap() and friends. Of course, any mmap feature that
  132.     actually requires a MMU will return an error. But if mmap() is
  133.     used to load a file into memory, then it works fine.
  134.     
  135.     Applied patch from Kamil Iskra to improve ixemul stack extension
  136.     handling.
  137.  
  138.  
  139. The net ixemul library distribution consists of several archives:
  140.  
  141.   ixemul-bin.lha    Utils for gnu/bin, like ixtrace and ixconfig
  142.  
  143.   ixemul-sdk.lha    Files needed to build applications that use
  144.             ixemul.library.
  145.  
  146.   ixemul-doc.lha    Various documentation, such as this file
  147.  
  148.   ixemul-src.lha    Complete source code for ixemul library
  149.  
  150.   ixemul-tz.lha        Pieces for doing TZ (timezone) management
  151.  
  152.   ixemul-CCCF.lha    Specific flavors of the library, where 'CCC'
  153.             is one of 000, 020, 030, or 040, for 68000, 68020,
  154.             68030, and 68040 respectively, and 'F' is either
  155.             'f', 's', or 't' for FPU support or soft floating
  156.             point or a "trace" version (also soft float)
  157.             respectively.
  158.  
  159. For further information consult the NEWS, INSTALL, README and TODO files in
  160. the documentation archive.
  161.  
  162. -Fred Fish  (fnf@ninemoons.com)
  163.  
  164.  
  165. ============================= Archive contents =============================
  166.  
  167. Original  Packed Ratio    Date     Time    Name
  168. -------- ------- ----- --------- --------  -------------
  169.     3611    1621 55.1% 08-May-96 23:22:52 +a.out.h
  170.     3718    1564 57.9% 26-Jan-96 16:55:50 +socketbasetags.h
  171.     1675     800 52.2% 26-Jan-96 16:55:52 +usergroup.h
  172.     2588    1288 50.2% 23-Dec-95 00:02:58 +ar.h
  173.     3646    1623 55.4% 23-Dec-95 00:03:04 +ftp.h
  174.     2416    1194 50.5% 18-May-96 15:23:06 +inet.h
  175.     8577    3301 61.5% 18-May-96 15:23:08 +nameser.h
  176.    10547    3958 62.4% 13-Aug-96 20:05:00 +telnet.h
  177.     2960    1439 51.3% 23-Dec-95 00:03:04 +tftp.h
  178.     1387     447 67.7% 23-Dec-95 00:02:58 +assert.h
  179.     4729    1666 64.7% 23-Dec-95 00:02:58 +bitstring.h
  180.       20      20  0.0% 23-Dec-95 00:02:58 +bstring.h
  181.     4174    1646 60.5% 13-Aug-96 20:48:16 +ctype.h
  182.     8215    3007 63.3% 18-May-96 15:22:42 +db.h
  183.     3984    1868 53.1% 13-Aug-96 20:48:18 +dirent.h
  184.     3185    1391 56.3% 18-May-96 15:22:42 +err.h
  185.     6766    2764 59.1% 19-Aug-96 10:26:44 +errno.h
  186.       23      23  0.0% 23-Dec-95 00:03:00 +fcntl.h
  187.       70      68  2.8% 23-Dec-95 00:03:00 +float.h
  188.     2283    1184 48.1% 18-May-96 15:22:44 +fnmatch.h
  189.     5392    2314 57.0% 13-Aug-96 20:04:06 +fts.h
  190.     4052    1877 53.6% 13-Aug-96 20:04:06 +glob.h
  191.     2235    1126 49.6% 23-Dec-95 00:03:00 +glue.h
  192.     7234    2497 65.4% 08-May-96 23:22:58 +gnu.a.out.h
  193.     2456    1196 51.3% 23-Dec-95 00:03:00 +grp.h
  194.     1739     699 59.8% 23-Dec-95 00:03:00 +gvarargs.h
  195.     1519     755 50.2% 26-Jan-96 16:55:42 +inetd.h
  196.      560     287 48.7% 23-Dec-95 00:03:00 +init.h
  197.     2016     903 55.2% 13-Aug-96 20:04:54 +ix_amiga.h
  198.     2981    1360 54.3% 13-Aug-96 20:04:14 +limits.h
  199.     2750    1350 50.9% 18-May-96 15:22:44 +locale.h
  200.     2879    1304 54.7% 13-Aug-96 20:07:18 +asm.h
  201.     2727    1342 50.7% 13-Aug-96 20:07:18 +signal.h
  202.     2641    1291 51.1% 13-Aug-96 20:07:18 +trap.h
  203.     3403    1685 50.4% 18-May-96 15:23:10 +ansi.h
  204.      137     121 11.6% 13-Aug-96 20:05:22 +asm.h
  205.      857     349 59.2% 18-May-96 15:23:12 +cdefs.h
  206.     6940    3106 55.2% 08-May-96 23:23:10 +cpu.h
  207.     2887    1352 53.1% 08-May-96 23:23:12 +endian.h
  208.     3641    1590 56.3% 23-Dec-95 00:03:04 +float.h
  209.     4294    1697 60.4% 23-Dec-95 00:03:04 +frame.h
  210.     3729    1525 59.1% 13-Aug-96 22:02:58 +limits.h
  211.     2340    1164 50.2% 23-Dec-95 00:03:04 +mtpr.h
  212.     7547    3078 59.2% 13-Aug-96 20:48:36 +param.h
  213.     2893    1456 49.6% 23-Dec-95 00:03:04 +pcb.h
  214.     4005    1875 53.1% 08-May-96 23:23:14 +pmap.h
  215.     2206    1137 48.4% 23-Dec-95 00:03:04 +proc.h
  216.     3121    1344 56.9% 23-Dec-95 00:03:04 +psl.h
  217.      537     301 43.9% 28-Jan-96 13:24:20 +reg.h
  218.      149     126 15.4% 13-Aug-96 20:05:22 +signal.h
  219.     2568    1260 50.9% 13-Aug-96 20:48:38 +stdarg.h
  220.      258     200 22.4% 13-Aug-96 20:05:16 +trap.h
  221.     2708    1343 50.4% 18-May-96 15:23:14 +types.h
  222.     9082    4055 55.3% 23-Dec-95 00:03:04 +vmparam.h
  223.       81      81  0.0% 13-Aug-96 20:04:54 +malloc.h
  224.     9530    1903 80.0% 23-Dec-95 00:03:00 +math-68881.h
  225.     4553    1850 59.3% 13-Aug-96 20:48:20 +math.h
  226.     1882     951 49.4% 23-Dec-95 00:03:00 +memory.h
  227.     5285    2090 60.4% 18-May-96 15:22:46 +mpool.h
  228.     2939    1454 50.5% 18-May-96 15:22:46 +ndbm.h
  229.       62      58  6.4% 23-Dec-95 00:03:00 +ndir.h
  230.     1418     775 45.3% 08-May-96 23:23:18 +af.h
  231.     8419    3313 60.6% 13-Aug-96 20:48:44 +bpf.h
  232.     3941    1839 53.3% 23-Dec-95 00:03:06 +bpfdesc.h
  233.     7861    3091 60.6% 08-May-96 23:23:20 +if.h
  234.     2495    1163 53.3% 23-Dec-95 00:03:06 +if_arp.h
  235.     3495    1755 49.7% 08-May-96 23:23:20 +if_dl.h
  236.     2834    1314 53.6% 23-Dec-95 00:03:06 +if_llc.h
  237.     3368    1625 51.7% 23-Dec-95 00:03:06 +if_slvar.h
  238.     2961    1373 53.6% 23-Dec-95 00:03:06 +if_types.h
  239.     1835     961 47.6% 08-May-96 23:23:22 +netisr.h
  240.     4434    1900 57.1% 08-May-96 23:23:24 +radix.h
  241.     2194    1064 51.5% 08-May-96 23:23:24 +raw_cb.h
  242.    10673    4006 62.4% 18-May-96 15:23:16 +route.h
  243.     6740    2968 55.9% 23-Dec-95 00:03:06 +slcompress.h
  244.     4880    2014 58.7% 18-May-96 15:22:48 +netdb.h
  245.     2604    1236 52.5% 18-May-96 15:22:48 +netgroup.h
  246.     1610     836 48.0% 08-May-96 23:23:30 +icmp_var.h
  247.     2916    1339 54.0% 08-May-96 23:23:30 +if_ether.h
  248.     9067    3434 62.1% 18-May-96 15:23:18 +in.h
  249.     1892     956 49.4% 08-May-96 23:23:32 +in_pcb.h
  250.     1462     806 44.8% 08-May-96 23:23:34 +in_systm.h
  251.     2086    1033 50.4% 08-May-96 23:23:34 +in_var.h
  252.     5898    2528 57.1% 13-Aug-96 20:05:44 +ip.h
  253.     4307    1754 59.2% 23-Dec-95 00:03:06 +ip_icmp.h
  254.     3670    1654 54.9% 08-May-96 23:23:36 +ip_var.h
  255.     2575    1274 50.5% 23-Dec-95 00:03:06 +tcp.h
  256.     1295     736 43.1% 23-Dec-95 00:03:06 +tcp_debug.h
  257.     2585    1215 52.9% 23-Dec-95 00:03:06 +tcp_fsm.h
  258.     1643     856 47.9% 08-May-96 23:23:38 +tcp_seq.h
  259.     4786    2058 56.9% 08-May-96 23:23:38 +tcp_timer.h
  260.     8838    3326 62.3% 08-May-96 23:23:40 +tcp_var.h
  261.     1514     745 50.7% 23-Dec-95 00:03:08 +tcpip.h
  262.     1103     637 42.2% 23-Dec-95 00:03:08 +udp.h
  263.     1548     797 48.5% 08-May-96 23:23:42 +udp_var.h
  264.     1002     421 57.9% 13-Aug-96 20:07:18 +krpc.h
  265.     9957    3982 60.0% 13-Aug-96 20:07:18 +nfs.h
  266.     2953    1503 49.1% 13-Aug-96 20:07:18 +nfsdiskless.h
  267.     8391    3045 63.7% 13-Aug-96 20:07:18 +nfsm_subs.h
  268.     4468    1943 56.5% 13-Aug-96 20:07:18 +nfsmount.h
  269.     7071    2631 62.7% 13-Aug-96 20:07:18 +nfsnode.h
  270.     3918    1872 52.2% 13-Aug-96 20:07:18 +nfsrtt.h
  271.     3100    1489 51.9% 13-Aug-96 20:07:18 +nfsrvcache.h
  272.     8233    2887 64.9% 13-Aug-96 20:07:18 +nfsv2.h
  273.     7371    3075 58.2% 13-Aug-96 20:07:18 +nqnfs.h
  274.     3180    1470 53.7% 13-Aug-96 20:07:18 +rpcv2.h
  275.     3646    1598 56.1% 13-Aug-96 20:07:18 +xdr_subs.h
  276.     3674    1792 51.2% 13-Aug-96 20:04:22 +nlist.h
  277.     3256     967 70.3% 13-Aug-96 20:04:22 +packets.h
  278.       23      23  0.0% 23-Dec-95 00:03:00 +param.h
  279.     2982    1365 54.2% 18-May-96 15:22:50 +paths.h
  280.     4182    1899 54.5% 23-Dec-95 00:03:08 +dumprestore.h
  281.     3999    1920 51.9% 23-Dec-95 00:03:08 +routed.h
  282.     2687    1330 50.5% 23-Dec-95 00:03:08 +rwhod.h
  283.     4860    2120 56.3% 23-Dec-95 00:03:08 +talkd.h
  284.     3992    1779 55.4% 23-Dec-95 00:03:08 +timed.h
  285.     3745    1598 57.3% 18-May-96 15:22:50 +pwd.h
  286.     2210    1119 49.3% 23-Dec-95 00:03:02 +ranlib.h
  287.     3744    1725 53.9% 13-Aug-96 20:04:54 +regex.h
  288.     2836    1380 51.3% 13-Aug-96 20:04:26 +regexp.h
  289.     6234    2688 56.8% 18-May-96 15:22:52 +resolv.h
  290.     5285    2227 57.8% 13-Aug-96 20:06:00 +auth.h
  291.     2615    1391 46.8% 13-Aug-96 20:06:00 +auth_unix.h
  292.     9824    3527 64.0% 13-Aug-96 20:06:02 +clnt.h
  293.     3176    1447 54.4% 13-Aug-96 20:06:04 +pmap_clnt.h
  294.     3603    1664 53.8% 13-Aug-96 20:06:04 +pmap_prot.h
  295.     2047    1110 45.7% 13-Aug-96 20:06:06 +pmap_rmt.h
  296.     3252    1608 50.5% 13-Aug-96 20:06:06 +rpc.h
  297.     4485    1901 57.6% 13-Aug-96 20:06:08 +rpc_msg.h
  298.     9911    3731 62.3% 13-Aug-96 20:06:10 +svc.h
  299.     1746     984 43.6% 13-Aug-96 20:06:12 +svc_auth.h
  300.     1897    1032 45.5% 13-Aug-96 20:06:14 +types.h
  301.    11086    3863 65.1% 13-Aug-96 20:06:14 +xdr.h
  302.      320     210 34.3% 23-Dec-95 00:03:02 +search.h
  303.     2504    1230 50.8% 14-Mar-96 12:59:54 +setjmp.h
  304.     1936     983 49.2% 23-Dec-95 00:03:02 +sgtty.h
  305.     4145    1709 58.7% 18-Aug-96 03:00:54 +signal.h
  306.     4738    1694 64.2% 23-Dec-95 00:03:02 +stab.def
  307.     3266    1441 55.8% 23-Dec-95 00:03:02 +stab.h
  308.     1957     992 49.3% 23-Dec-95 00:03:02 +stdarg.h
  309.     2313    1168 49.5% 18-May-96 15:22:52 +stddef.h
  310.    12591    4702 62.6% 13-Aug-96 20:48:24 +stdio.h
  311.     6304    2244 64.4% 18-May-96 15:22:56 +stdlib.h
  312.     3860    1405 63.6% 18-May-96 15:22:56 +string.h
  313.     1889     953 49.5% 23-Dec-95 00:03:02 +strings.h
  314.     2293    1107 51.7% 23-Dec-95 00:03:02 +struct.h
  315.     2896    1465 49.4% 08-May-96 23:23:44 +acct.h
  316.     4682    2112 54.8% 18-May-96 15:23:20 +cdefs.h
  317.     2565    1306 49.0% 23-Dec-95 00:03:10 +dir.h
  318.     3185    1560 51.0% 13-Aug-96 20:07:16 +dirent.h
  319.     2288    1139 50.2% 08-May-96 23:23:46 +domain.h
  320.       19      19  0.0% 23-Dec-95 00:03:10 +errno.h
  321.     3107    1432 53.9% 23-Dec-95 00:03:10 +exec.h
  322.     6971    2853 59.0% 13-Aug-96 20:48:48 +fcntl.h
  323.     4162    1916 53.9% 13-Aug-96 20:48:50 +file.h
  324.     2818    1363 51.6% 18-May-96 15:23:24 +filio.h
  325.     3861    1685 56.3% 23-Dec-95 00:03:10 +gprof.h
  326.     3259    1529 53.0% 18-May-96 15:23:24 +ioccom.h
  327.     3262    1588 51.3% 18-May-96 15:23:26 +ioctl.h
  328.     7160    2758 61.4% 18-May-96 15:23:26 +ioctl_compat.h
  329.     3835    1290 66.3% 13-Aug-96 20:48:50 +ixnet_syscall.def
  330.     1051     582 44.6% 14-Mar-96 13:14:28 +ixnet_syscall.h
  331.     3113    1323 57.5% 18-May-96 15:23:28 +localedef.h
  332.    12144    4399 63.7% 08-May-96 23:23:50 +mbuf.h
  333.     3751    1736 53.7% 18-May-96 15:23:30 +mman.h
  334.    10074    3847 61.8% 18-May-96 15:23:30 +mount.h
  335.     4734    2045 56.8% 08-May-96 23:23:52 +mtio.h
  336.     8158    3680 54.8% 08-May-96 23:23:54 +param.h
  337.     9317    3819 59.0% 08-May-96 23:23:54 +proc.h
  338.     8947    3510 60.7% 08-May-96 23:23:56 +protosw.h
  339.     4133    1743 57.8% 18-May-96 15:23:32 +ptrace.h
  340.     3944    1734 56.0% 08-May-96 23:24:00 +resource.h
  341.     8006    3352 58.1% 13-Aug-96 20:06:42 +signal.h
  342.    11688    4283 63.3% 18-May-96 15:23:32 +socket.h
  343.     8243    3326 59.6% 08-May-96 23:24:02 +socketvar.h
  344.     4947    1731 65.0% 18-May-96 15:23:34 +sockio.h
  345.        0       0  0.0% 23-Dec-95 00:03:10 +start.s
  346.     5507    2114 61.6% 13-Aug-96 20:48:52 +stat.h
  347.     1536     839 45.3% 23-Dec-95 00:03:10 +stdc.h
  348.    16869    4215 75.0% 13-Aug-96 20:48:54 +syscall.def
  349.     1035     575 44.4% 23-Dec-95 00:03:12 +syscall.h
  350.     3020    1419 53.0% 23-Dec-95 00:03:12 +syslimits.h
  351.     6390    2654 58.4% 18-May-96 15:23:36 +syslog.h
  352.     9058    3383 62.6% 13-Aug-96 20:48:56 +termios.h
  353.     5324    2178 59.0% 08-May-96 23:24:06 +time.h
  354.     2132    1090 48.8% 23-Dec-95 00:03:12 +timeb.h
  355.     2375    1155 51.3% 08-May-96 23:24:06 +times.h
  356.     2994    1378 53.9% 23-Dec-95 00:03:12 +tracecntl.h
  357.     6213    2736 55.9% 08-May-96 23:24:08 +tty.h
  358.     2716    1313 51.6% 23-Dec-95 00:03:12 +ttychars.h
  359.     6834    2609 61.8% 18-May-96 15:23:36 +ttycom.h
  360.     3373    1583 53.0% 23-Dec-95 00:03:12 +ttydefaults.h
  361.     2268    1111 51.0% 23-Dec-95 00:03:12 +ttydev.h
  362.     5783    2485 57.0% 18-May-96 15:23:38 +types.h
  363.     2332    1169 49.8% 08-May-96 23:24:10 +ucred.h
  364.     2628    1316 49.9% 14-Mar-96 13:00:22 +uio.h
  365.     2251    1170 48.0% 08-May-96 23:24:12 +un.h
  366.     3604    1636 54.6% 23-Dec-95 00:03:12 +unistd.h
  367.     1839     849 53.8% 26-Jan-96 16:44:42 +unix_socket.h
  368.     3500    1644 53.0% 23-Dec-95 00:03:12 +unpcb.h
  369.     3380    1578 53.3% 13-Aug-96 20:48:58 +user.h
  370.     1214     618 49.0% 08-May-96 23:24:14 +utsname.h
  371.     5552    2330 58.0% 08-May-96 23:24:16 +wait.h
  372.     5461    2443 55.2% 23-Dec-95 00:03:02 +sysexits.h
  373.       24      24  0.0% 14-Mar-96 13:14:24 +syslog.h
  374.       25      25  0.0% 23-Dec-95 00:03:02 +termios.h
  375.     3828    1743 54.4% 18-May-96 15:22:58 +time.h
  376.     3130    1503 51.9% 18-May-96 15:22:58 +ttyent.h
  377.     4808    1817 62.2% 23-Dec-95 00:03:02 +tzfile.h
  378.     7088    2404 66.0% 18-Aug-96 03:00:58 +unistd.h
  379.    13015    5064 61.0% 13-Aug-96 20:48:28 +user.h
  380.     2131    1088 48.9% 23-Dec-95 00:03:02 +utime.h
  381.     2735    1230 55.0% 08-May-96 23:23:06 +utmp.h
  382.      137     105 23.3% 23-Dec-95 00:03:02 +values.h
  383.     2064    1047 49.2% 23-Dec-95 00:03:02 +varargs.h
  384.     3199    1507 52.8% 23-Dec-95 00:03:02 +vis.h
  385.       22      22  0.0% 23-Dec-95 00:03:02 +wait.h
  386.    60547   22502 62.8% 01-Sep-96 23:45:36 +bcrt0.o
  387.    59901   22156 63.0% 01-Sep-96 23:45:10 +crt0.o
  388.    66423   25170 62.1% 01-Sep-96 23:46:28 +gcrt0.o
  389.   779384  286077 63.2% 01-Sep-96 23:44:34 +libc.a
  390.   782776  285839 63.4% 01-Sep-96 23:43:54 +libc.a
  391.   823316  287994 65.0% 01-Sep-96 23:44:12 +libc_p.a
  392.    66423   25170 62.1% 01-Sep-96 23:46:28 +mcrt0.o
  393.    60884   22618 62.8% 01-Sep-96 23:46:00 +rcrt0.o
  394.     3814    1375 63.9% 01-Sep-96 23:52:52 +ixrun.0
  395.     6289    2405 61.7% 01-Sep-96 23:52:56 +ixtrace.0
  396.     2322    1037 55.3% 01-Sep-96 23:53:00 +_exit.0
  397.     3842    1572 59.0% 01-Sep-96 23:53:06 +accept.0
  398.     3311    1404 57.5% 01-Sep-96 23:53:12 +access.0
  399.     2668    1223 54.1% 01-Sep-96 23:53:18 +adjtime.0
  400.     2906    1297 55.3% 01-Sep-96 23:53:24 +bind.0
  401.     2836    1139 59.8% 01-Sep-96 23:53:30 +chdir.0
  402.     4863    1844 62.0% 01-Sep-96 23:53:36 +chmod.0
  403.     3434    1401 59.2% 01-Sep-96 23:53:44 +chown.0
  404.     2118     981 53.6% 01-Sep-96 23:53:48 +chroot.0
  405.     2604    1194 54.1% 01-Sep-96 23:53:54 +close.0
  406.     3854    1588 58.7% 01-Sep-96 23:54:02 +connect.0
  407.     2452    1095 55.3% 01-Sep-96 23:54:08 +dup.0
  408.     7983    2846 64.3% 01-Sep-96 23:54:18 +execve.0
  409.    12533    4211 66.4% 01-Sep-96 23:54:28 +fcntl.0
  410.     3530    1537 56.4% 01-Sep-96 23:54:34 +flock.0
  411.     2662    1127 57.6% 01-Sep-96 23:54:40 +fork.0
  412.     1360     720 47.0% 01-Sep-96 23:54:44 +fsync.0
  413.     3463    1390 59.8% 01-Sep-96 23:54:50 +getfsstat.0
  414.     1481     648 56.2% 01-Sep-96 23:54:54 +getgid.0
  415.     1895     774 59.1% 01-Sep-96 23:55:00 +getgroups.0
  416.     4114    1513 63.2% 01-Sep-96 23:55:06 +getitimer.0
  417.     3001    1262 57.9% 01-Sep-96 23:55:10 +getlogin.0
  418.     1587     747 52.9% 01-Sep-96 23:55:16 +getpeername.0
  419.     2041     927 54.5% 01-Sep-96 23:55:20 +getpgrp.0
  420.     1181     545 53.8% 01-Sep-96 23:55:26 +getpid.0
  421.     2978    1127 62.1% 01-Sep-96 23:55:32 +getpriority.0
  422.     5407    2013 62.7% 01-Sep-96 23:55:38 +getrlimit.0
  423.     5443    1800 66.9% 01-Sep-96 23:55:44 +getrusage.0
  424.     1563     752 51.8% 01-Sep-96 23:55:48 +getsockname.0
  425.    11123    3892 65.0% 01-Sep-96 23:55:58 +getsockopt.0
  426.     2894    1253 56.7% 01-Sep-96 23:56:04 +gettimeofday.0
  427.     1431     627 56.1% 01-Sep-96 23:56:08 +getuid.0
  428.    30204    9804 67.5% 01-Sep-96 23:56:30 +intro.0
  429.     1829     879 51.9% 01-Sep-96 23:56:34 +ioctl.0
  430.     3343    1317 60.6% 01-Sep-96 23:56:40 +kill.0
  431.     3598    1365 62.0% 01-Sep-96 23:56:48 +link.0
  432.     1829     879 51.9% 01-Sep-96 23:56:52 +listen.0
  433.     2487    1047 57.9% 01-Sep-96 23:56:58 +lseek.0
  434.     2909    1169 59.8% 01-Sep-96 23:57:04 +mkdir.0
  435.     3104    1229 60.4% 01-Sep-96 23:57:10 +mkfifo.0
  436.     3175    1268 60.0% 01-Sep-96 23:57:16 +mknod.0
  437.     7055    2479 64.8% 01-Sep-96 23:57:24 +open.0
  438.     4001    1522 61.9% 01-Sep-96 23:57:30 +pathconf.0
  439.     2181    1037 52.4% 01-Sep-96 23:57:36 +pipe.0
  440.     2483    1088 56.1% 01-Sep-96 23:57:42 +profil.0
  441.    12746    3896 69.4% 01-Sep-96 23:57:52 +ptrace.0
  442.     4138    1691 59.1% 01-Sep-96 23:58:00 +read.0
  443.     1919     878 54.2% 01-Sep-96 23:58:06 +readlink.0
  444.     7546    2906 61.4% 01-Sep-96 23:58:14 +recv.0
  445.     4773    1825 61.7% 01-Sep-96 23:58:20 +rename.0
  446.     2355     997 57.6% 01-Sep-96 23:58:26 +rmdir.0
  447.     5101    1934 62.0% 01-Sep-96 23:58:34 +select.0
  448.     3938    1570 60.1% 01-Sep-96 23:58:40 +send.0
  449.     1510     707 53.1% 01-Sep-96 23:58:46 +setgroups.0
  450.     2695     936 65.2% 01-Sep-96 23:58:50 +setuid.0
  451.     1246     592 52.4% 01-Sep-96 23:58:54 +shutdown.0
  452.    11384    3857 66.1% 01-Sep-96 23:59:08 +sigaction.0
  453.     1255     614 51.0% 01-Sep-96 23:59:12 +sigpending.0
  454.     2423    1012 58.2% 01-Sep-96 23:59:18 +sigprocmask.0
  455.     2103     954 54.6% 01-Sep-96 23:59:22 +sigreturn.0
  456.      539     292 45.8% 01-Sep-96 23:59:26 +sigstack.0
  457.     1614     779 51.7% 01-Sep-96 23:59:30 +sigsuspend.0
  458.     6760    2707 59.9% 01-Sep-96 23:59:38 +socket.0
  459.     1879     791 57.9% 01-Sep-96 23:59:44 +socketpair.0
  460.     7213    2601 63.9% 01-Sep-96 23:59:52 +stat.0
  461.     3770    1413 62.5% 01-Sep-96 23:59:58 +statfs.0
  462.     3522    1199 65.9% 02-Sep-96 00:00:04 +symlink.0
  463.     1165     622 46.6% 02-Sep-96 00:00:10 +sync.0
  464.     2668    1142 57.1% 02-Sep-96 00:00:16 +truncate.0
  465.     1530     739 51.6% 02-Sep-96 00:00:20 +umask.0
  466.     2756    1166 57.6% 02-Sep-96 00:00:26 +unlink.0
  467.     2853    1154 59.5% 02-Sep-96 00:00:32 +utimes.0
  468.     2468    1207 51.0% 02-Sep-96 00:00:36 +vfork.0
  469.     7762    2471 68.1% 02-Sep-96 00:00:44 +wait.0
  470.     4862    1931 60.2% 02-Sep-96 00:00:52 +write.0
  471.      877     451 48.5% 02-Sep-96 00:00:56 +abort.0
  472.      832     407 51.0% 02-Sep-96 00:01:00 +abs.0
  473.      828     410 50.4% 02-Sep-96 00:01:06 +acos.0
  474.      877     430 50.9% 02-Sep-96 00:01:10 +acosh.0
  475.     1410     668 52.6% 02-Sep-96 00:01:14 +alarm.0
  476.      973     491 49.5% 02-Sep-96 00:01:20 +alloca.0
  477.      831     411 50.5% 02-Sep-96 00:01:24 +asin.0
  478.     1017     444 56.3% 02-Sep-96 00:01:28 +asinh.0
  479.      853     425 50.1% 02-Sep-96 00:01:34 +atan.0
  480.      884     433 51.0% 02-Sep-96 00:01:38 +atanh.0
  481.     1406     692 50.7% 02-Sep-96 00:01:42 +atexit.0
  482.      839     445 46.9% 02-Sep-96 00:01:46 +atof.0
  483.      843     452 46.3% 02-Sep-96 00:01:52 +atoi.0
  484.      859     456 46.9% 02-Sep-96 00:01:56 +atol.0
  485.      940     476 49.3% 02-Sep-96 00:02:00 +bcmp.0
  486.      823     415 49.5% 02-Sep-96 00:02:04 +bcopy.0
  487.     1910     818 57.1% 02-Sep-96 00:02:10 +bsearch.0
  488.     2482     735 70.3% 02-Sep-96 00:02:16 +bstring.0
  489.     8445    3072 63.6% 02-Sep-96 00:02:20 +btree.0
  490.     1491     678 54.5% 02-Sep-96 00:02:24 +byteorder.0
  491.      710     376 47.0% 02-Sep-96 00:02:28 +bzero.0
  492.     1019     503 50.6% 02-Sep-96 00:02:32 +calloc.0
  493.      811     407 49.8% 02-Sep-96 00:02:38 +ceil.0
  494.      892     453 49.2% 02-Sep-96 00:02:42 +clock.0
  495.     1022     512 49.9% 02-Sep-96 00:02:46 +cos.0
  496.      798     381 52.2% 02-Sep-96 00:02:52 +cosh.0
  497.     1016     494 51.3% 02-Sep-96 00:02:56 +creat.0
  498.     6262    2322 62.9% 02-Sep-96 00:03:04 +crypt.0
  499.     1619     800 50.5% 02-Sep-96 00:03:08 +ctermid.0
  500.     7286    2506 65.6% 02-Sep-96 00:03:12 +ctime.0
  501.     1839     676 63.2% 02-Sep-96 00:03:18 +ctype.0
  502.     7403    1896 74.3% 02-Sep-96 00:03:30 +curses.0
  503.     2624    1090 58.4% 02-Sep-96 00:03:34 +cuserid.0
  504.    16119    4756 70.4% 02-Sep-96 00:03:40 +dbopen.0
  505.     4199    1382 67.0% 02-Sep-96 00:03:46 +directory.0
  506.      834     433 48.0% 02-Sep-96 00:03:50 +div.0
  507.     6474    2113 67.3% 02-Sep-96 00:03:58 +exec.0
  508.     1112     541 51.3% 02-Sep-96 00:04:04 +exit.0
  509.     6074    2307 62.0% 02-Sep-96 00:04:12 +exp.0
  510.      901     429 52.3% 02-Sep-96 00:04:16 +fabs.0
  511.     1329     671 49.5% 02-Sep-96 00:04:20 +fclose.0
  512.     1853     676 63.5% 02-Sep-96 00:04:26 +ferror.0
  513.     1864     845 54.6% 02-Sep-96 00:04:30 +fflush.0
  514.      763     401 47.4% 02-Sep-96 00:04:36 +ffs.0
  515.     2327    1074 53.8% 02-Sep-96 00:04:40 +fgetln.0
  516.     2664    1136 57.3% 02-Sep-96 00:04:46 +fgets.0
  517.      823     410 50.1% 02-Sep-96 00:04:50 +floor.0
  518.     2678    1042 61.0% 02-Sep-96 00:04:56 +fnmatch.0
  519.     4839    1654 65.8% 02-Sep-96 00:05:04 +fopen.0
  520.     1462     638 56.3% 02-Sep-96 00:05:08 +fputs.0
  521.     1992     778 60.9% 02-Sep-96 00:05:14 +fread.0
  522.     1135     562 50.4% 02-Sep-96 00:05:18 +free.0
  523.     1200     599 50.0% 02-Sep-96 00:05:24 +frexp.0
  524.     3670    1302 64.5% 02-Sep-96 00:05:30 +fseek.0
  525.     1708     798 53.2% 02-Sep-96 00:05:34 +ftime.0
  526.    23133    5928 74.3% 02-Sep-96 00:05:50 +fts.0
  527.     4022    1503 62.6% 02-Sep-96 00:05:56 +funopen.0
  528.     2343     995 57.5% 02-Sep-96 00:06:02 +getc.0
  529.     2990    1295 56.6% 02-Sep-96 00:06:08 +getcwd.0
  530.      905     470 48.0% 02-Sep-96 00:06:12 +getdtablesize.0
  531.     2956    1100 62.7% 02-Sep-96 00:06:18 +getenv.0
  532.     4691    1606 65.7% 02-Sep-96 00:06:24 +getgrent.0
  533.     7183    2459 65.7% 02-Sep-96 00:06:32 +gethostbyname.0
  534.     1361     640 52.9% 02-Sep-96 00:06:36 +gethostid.0
  535.     2018     897 55.5% 02-Sep-96 00:06:42 +gethostname.0
  536.     2196     891 59.4% 02-Sep-96 00:06:48 +getmntinfo.0
  537.     3526    1264 64.1% 02-Sep-96 00:06:52 +getnetent.0
  538.     6468    2282 64.7% 02-Sep-96 00:07:00 +getopt.0
  539.      851     446 47.5% 02-Sep-96 00:07:04 +getpagesize.0
  540.     1679     782 53.4% 02-Sep-96 00:07:08 +getpass.0
  541.     3295    1123 65.9% 02-Sep-96 00:07:14 +getprotoent.0
  542.     5429    1898 65.0% 02-Sep-96 00:07:20 +getpwent.0
  543.     3639    1282 64.7% 02-Sep-96 00:07:26 +getservent.0
  544.     3706    1229 66.8% 02-Sep-96 00:07:32 +getsubopt.0
  545.     4975    1762 64.5% 02-Sep-96 00:07:38 +getttyent.0
  546.     1776     658 62.9% 02-Sep-96 00:07:42 +getusershell.0
  547.    11413    3747 67.1% 02-Sep-96 00:07:54 +glob.0
  548.     4623    1858 59.8% 02-Sep-96 00:07:58 +hash.0
  549.     1021     498 51.2% 02-Sep-96 00:08:02 +index.0
  550.     5415    1760 67.4% 02-Sep-96 00:08:08 +inet.0
  551.     1520     681 55.1% 02-Sep-96 00:08:12 +initgroups.0
  552.     1460     619 57.6% 02-Sep-96 00:08:18 +insque.0
  553.     3939    1704 56.7% 02-Sep-96 00:08:20 +intro.0
  554.     1081     502 53.5% 02-Sep-96 00:08:26 +isalnum.0
  555.     1303     569 56.3% 02-Sep-96 00:08:32 +isalpha.0
  556.      924     457 50.5% 02-Sep-96 00:08:36 +isascii.0
  557.     1024     477 53.4% 02-Sep-96 00:08:42 +iscntrl.0
  558.     1049     484 53.8% 02-Sep-96 00:08:46 +isdigit.0
  559.     1078     499 53.7% 02-Sep-96 00:08:52 +isgraph.0
  560.     1020     491 51.8% 02-Sep-96 00:08:56 +isinf.0
  561.     1245     560 55.0% 02-Sep-96 00:09:02 +islower.0
  562.     1081     499 53.8% 02-Sep-96 00:09:06 +isprint.0
  563.     1097     510 53.5% 02-Sep-96 00:09:12 +ispunct.0
  564.     1462     626 57.1% 02-Sep-96 00:09:18 +isspace.0
  565.     1291     587 54.5% 02-Sep-96 00:09:22 +isupper.0
  566.     1060     488 53.9% 02-Sep-96 00:09:28 +isxdigit.0
  567.     1921     848 55.8% 02-Sep-96 00:09:32 +killpg.0
  568.      757     385 49.1% 02-Sep-96 00:09:36 +labs.0
  569.     1015     514 49.3% 02-Sep-96 00:09:42 +ldexp.0
  570.      882     446 49.4% 02-Sep-96 00:09:46 +ldiv.0
  571.     2922    1234 57.7% 02-Sep-96 00:09:50 +linkaddr.0
  572.     1680     826 50.8% 02-Sep-96 00:09:56 +malloc.0
  573.     1038     498 52.0% 02-Sep-96 00:10:00 +memccpy.0
  574.     1046     516 50.6% 02-Sep-96 00:10:04 +memchr.0
  575.     1190     581 51.1% 02-Sep-96 00:10:10 +memcmp.0
  576.     1172     549 53.1% 02-Sep-96 00:10:14 +memcpy.0
  577.     1003     484 51.7% 02-Sep-96 00:10:18 +memmove.0
  578.     1255     517 58.8% 02-Sep-96 00:10:24 +memory.0
  579.      755     402 46.7% 02-Sep-96 00:10:28 +memset.0
  580.     2499    1018 59.2% 02-Sep-96 00:10:34 +mktemp.0
  581.     1055     509 51.7% 02-Sep-96 00:10:38 +modf.0
  582.     6514    1945 70.1% 02-Sep-96 00:10:42 +mpool.0
  583.     7231    2485 65.6% 02-Sep-96 00:10:44 +newctime.0
  584.     9001    2621 70.8% 02-Sep-96 00:10:48 +newtzset.0
  585.     1051     541 48.5% 02-Sep-96 00:10:54 +nice.0
  586.     2955    1305 55.8% 02-Sep-96 00:10:58 +ns.0
  587.     1126     562 50.0% 02-Sep-96 00:11:04 +pause.0
  588.     1217     605 50.2% 02-Sep-96 00:11:08 +perror.0
  589.     3565    1444 59.4% 02-Sep-96 00:11:14 +popen.0
  590.    14716    4505 69.3% 02-Sep-96 00:11:28 +printf.0
  591.     1892     797 57.8% 02-Sep-96 00:11:34 +psignal.0
  592.     2179     892 59.0% 02-Sep-96 00:11:38 +putc.0
  593.      674     345 48.8% 02-Sep-96 00:11:44 +qabs.0
  594.      789     400 49.3% 02-Sep-96 00:11:48 +qdiv.0
  595.     5757    2041 64.5% 02-Sep-96 00:11:54 +qsort.0
  596.     3669    1509 58.8% 02-Sep-96 00:12:00 +radixsort.0
  597.     1039     517 50.2% 02-Sep-96 00:12:06 +raise.0
  598.     1305     633 51.4% 02-Sep-96 00:12:10 +rand.0
  599.     4505    1731 61.5% 02-Sep-96 00:12:16 +random.0
  600.     5548    2052 63.0% 02-Sep-96 00:12:22 +rcmd.0
  601.     1762     757 57.0% 02-Sep-96 00:12:26 +realloc.0
  602.     6439    2284 64.5% 02-Sep-96 00:12:30 +recno.0
  603.    20211    6741 66.6% 02-Sep-96 00:12:36 +regex.0
  604.     8610    3186 62.9% 02-Sep-96 00:12:44 +regexp.0
  605.     1080     548 49.2% 02-Sep-96 00:12:48 +remove.0
  606.     9080    3042 66.4% 02-Sep-96 00:12:58 +resolver.0
  607.      993     482 51.4% 02-Sep-96 00:13:04 +rindex.0
  608.    10359    3318 67.9% 02-Sep-96 00:13:14 +scanf.0
  609.     4441    1738 60.8% 02-Sep-96 00:13:20 +setbuf.0
  610.     4033    1303 67.6% 02-Sep-96 00:13:28 +setjmp.0
  611.     1936     865 55.3% 02-Sep-96 00:13:32 +setregid.0
  612.     1801     815 54.7% 02-Sep-96 00:13:36 +setreuid.0
  613.     1339     652 51.3% 02-Sep-96 00:13:42 +sigblock.0
  614.     2529    1099 56.5% 02-Sep-96 00:13:46 +siginterrupt.0
  615.     7301    2654 63.6% 02-Sep-96 00:13:56 +signal.0
  616.     1206     589 51.1% 02-Sep-96 00:14:02 +sigpause.0
  617.     1289     632 50.9% 02-Sep-96 00:14:06 +sigsetmask.0
  618.     2787     900 67.7% 02-Sep-96 00:14:12 +sigsetops.0
  619.    10246    3580 65.0% 02-Sep-96 00:14:24 +sigvec.0
  620.      933     461 50.5% 02-Sep-96 00:14:28 +sin.0
  621.     1000     479 52.1% 02-Sep-96 00:14:32 +sinh.0
  622.     2199     968 55.9% 02-Sep-96 00:14:38 +sleep.0
  623.     1033     442 57.2% 02-Sep-96 00:14:42 +sqrt.0
  624.     8482    2911 65.6% 02-Sep-96 00:14:50 +stdio.0
  625.     1503     615 59.0% 02-Sep-96 00:14:54 +strcasecmp.0
  626.     1364     551 59.6% 02-Sep-96 00:15:00 +strcat.0
  627.     1146     544 52.5% 02-Sep-96 00:15:04 +strchr.0
  628.     1421     587 58.6% 02-Sep-96 00:15:10 +strcmp.0
  629.     1021     487 52.3% 02-Sep-96 00:15:14 +strcoll.0
  630.     1614     630 60.9% 02-Sep-96 00:15:20 +strcpy.0
  631.     1151     532 53.7% 02-Sep-96 00:15:24 +strcspn.0
  632.      812     418 48.5% 02-Sep-96 00:15:28 +strdup.0
  633.      910     479 47.3% 02-Sep-96 00:15:32 +strerror.0
  634.     5201    1574 69.7% 02-Sep-96 00:15:42 +strftime.0
  635.     4445    1011 77.2% 02-Sep-96 00:15:50 +string.0
  636.      818     415 49.2% 02-Sep-96 00:15:54 +strlen.0
  637.     3893    1284 67.0% 02-Sep-96 00:16:00 +strmode.0
  638.     1089     499 54.1% 02-Sep-96 00:16:04 +strpbrk.0
  639.     1097     526 52.0% 02-Sep-96 00:16:10 +strrchr.0
  640.     1560     708 54.6% 02-Sep-96 00:16:14 +strsep.0
  641.      776     416 46.3% 02-Sep-96 00:16:18 +strsignal.0
  642.     1023     494 51.7% 02-Sep-96 00:16:22 +strspn.0
  643.     1225     515 57.9% 02-Sep-96 00:16:28 +strstr.0
  644.     2099     895 57.3% 02-Sep-96 00:16:32 +strtod.0
  645.     2128     979 53.9% 02-Sep-96 00:16:38 +strtok.0
  646.     3148    1254 60.1% 02-Sep-96 00:16:44 +strtol.0
  647.     3343    1314 60.6% 02-Sep-96 00:16:50 +strtoul.0
  648.      839     435 48.1% 02-Sep-96 00:16:54 +strxfrm.0
  649.      829     417 49.6% 02-Sep-96 00:16:58 +swab.0
  650.     5221    1861 64.3% 02-Sep-96 00:17:06 +sysconf.0
  651.     6551    2452 62.5% 02-Sep-96 00:17:14 +syslog.0
  652.     1492     709 52.4% 02-Sep-96 00:17:20 +system.0
  653.     1025     511 50.1% 02-Sep-96 00:17:24 +tan.0
  654.      969     453 53.2% 02-Sep-96 00:17:30 +tanh.0
  655.     1452     666 54.1% 02-Sep-96 00:17:34 +tcgetpgrp.0
  656.     3458    1224 64.6% 02-Sep-96 00:17:40 +tcsendbreak.0
  657.     9761    2752 71.8% 02-Sep-96 00:17:50 +tcsetattr.0
  658.     2196     858 60.9% 02-Sep-96 00:17:54 +tcsetpgrp.0
  659.     5685    2119 62.7% 02-Sep-96 00:18:02 +termcap.0
  660.     1227     634 48.3% 02-Sep-96 00:18:06 +time.0
  661.     4364    1721 60.5% 02-Sep-96 00:18:10 +time2posix.0
  662.     2598    1019 60.7% 02-Sep-96 00:18:16 +times.0
  663.     4809    1795 62.6% 02-Sep-96 00:18:22 +tmpnam.0
  664.     1133     520 54.1% 02-Sep-96 00:18:28 +tolower.0
  665.     1086     501 53.8% 02-Sep-96 00:18:32 +toupper.0
  666.     2202     912 58.5% 02-Sep-96 00:18:38 +ttyname.0
  667.     1586     762 51.9% 02-Sep-96 00:18:42 +ualarm.0
  668.     1621     760 53.1% 02-Sep-96 00:18:48 +uname.0
  669.     1636     799 51.1% 02-Sep-96 00:18:52 +ungetc.0
  670.     4260    1551 63.5% 02-Sep-96 00:18:58 +unvis.0
  671.     1560     737 52.7% 02-Sep-96 00:19:02 +usleep.0
  672.     3549    1457 58.9% 02-Sep-96 00:19:08 +utime.0
  673.     1347     663 50.7% 02-Sep-96 00:19:12 +valloc.0
  674.     5580    2013 63.9% 02-Sep-96 00:19:22 +vis.0
  675.     3850    1550 59.7% 02-Sep-96 00:19:26 +vtimes.0
  676.     5000    1604 67.9% 02-Sep-96 00:19:30 +tzfile.0
  677.    11937    4203 64.7% 02-Sep-96 00:19:34 +re_format.0
  678.     7128    2391 66.4% 02-Sep-96 00:19:38 +ixtimezone.0
  679.    11848    3934 66.7% 02-Sep-96 00:19:42 +zic.0
  680. -------- ------- ----- --------- --------
  681.  4502722 1696712 62.3% 11-Sep-96 13:57:50   511 files
  682.